ParticipantCountInfo

data class ParticipantCountInfo(participantCount: Int, peakParticipantCount: Int, cumulativeParticipantCount: Int)

A class that provides participant count info.

Since

1.0.0

Constructors

Link copied to clipboard
fun ParticipantCountInfo(participantCount: Int = 0, peakParticipantCount: Int = 0, cumulativeParticipantCount: Int = 0)

Properties

Link copied to clipboard
var cumulativeParticipantCount: Int = 0

The sum of all participants that entered and exited a live event.

Link copied to clipboard
var participantCount: Int = 0

The number of participants in a live event which is counted by the number of devices and browsers concurrently connected to Sendbird server.

Link copied to clipboard
var peakParticipantCount: Int = 0

The highest number of participantCount measured at a given time during a live event.